crypto/tls.halfConn.cipher (field)

14 uses

	crypto/tls (current package)
		conn.go#L172: 	cipher  any    // cipher algorithm
		conn.go#L217: 	hc.cipher = hc.nextCipher
		conn.go#L231: 	hc.cipher = suite.aead(key, iv)
		conn.go#L256: 	if hc.cipher == nil {
		conn.go#L260: 	switch c := hc.cipher.(type) {
		conn.go#L354: 	if hc.cipher != nil {
		conn.go#L355: 		switch c := hc.cipher.(type) {
		conn.go#L479: 	if hc.cipher == nil {
		conn.go#L486: 		if _, isCBC := hc.cipher.(cbcMode); !isCBC && explicitNonceLen < 16 {
		conn.go#L505: 	switch c := hc.cipher.(type) {
		conn.go#L694: 	if c.in.cipher == nil && typ == recordTypeApplicationData {
		conn.go#L902: 	if c.out.cipher != nil {
		conn.go#L903: 		switch ciph := c.out.cipher.(type) {
		conn.go#L1223: 		if _, ok := c.out.cipher.(cipher.BlockMode); ok {